Prev Next |
A data provider may support the storing of unstructured data (that is, data stored in [key, value] pairs). Properties are often used to store miscellaneous data, such as the data provider version and the date of the previous publish operation. The data provider must implement the following methods to support properties.
Return Value |
Method Name |
Parameters |
Description |
string |
string name
|
Returns the current value of the property identified by name. |
|
bool |
string name
|
Removes the property identified by name. If
isPrefix is True, the method removes all properties with
names that start with name (case insensitive).
Returns True if the operation was successful, False otherwise.
|
|
bool |
string name
|
Stores value in the property identified with name. Returns True if the operation was successful, False otherwise. |
Prev Next